import React, { useState } from 'react'; import { Instagram, Youtube, Phone, Mail, MapPin, MessageCircle, Star, Camera, TrendingUp, Heart, Send, CheckCircle } from 'lucide-react'; const App = () => { const [isMenuOpen, setIsMenuOpen] = useState(false); const [formStatus, setFormStatus] = useState('idle'); // idle, submitting, success const phoneNumber = "919544214536"; const whatsappLink = `https://wa.me/${phoneNumber}`; const callLink = `tel:+${phoneNumber}`; const youtubeLink = "https://www.youtube.com/@LIANJUS_VLOGS"; const instagramLink = "https://www.instagram.com/lianjus_vlogs/"; const handleContactSubmit = (e) => { e.preventDefault(); setFormStatus('submitting'); // Simulate network request setTimeout(() => { setFormStatus('success'); e.target.reset(); setTimeout(() => setFormStatus('idle'), 5000); // Reset after 5 seconds }, 1500); }; return (
{/* Navigation */} {/* Floating Action Buttons */}
{/* Hero Section */}
{/* Decorative blobs */}
Child Model & Vlogger

Hi, I'm Lianju!

I am 1½ years old, and I love the camera! Follow my journey as a child model and watch my daily adventures on my vlogs.

{/* Placeholder Image - You can replace this src with Lianju's actual photo URL */} Lianju hero

Managed by

Abdullah

{/* About Section */}

About Me

Lianju playing
Years Old

A Little Star in the Making

Hello! My name is Lianju. Even though I am just 1 and 1/2 years old, I have already found my love for the camera! My days are filled with giggles, exploring the world, and sharing my cuteness through my vlogs and modeling shoots.

Whether it's a fun day at the park, trying out new toys, or posing for brand collaborations, I love sharing my happy moments with everyone on my YouTube channel and Instagram.

Professional Management

My profile, bookings, and collaborations are exclusively managed by my father, Abdullah. As an experienced Ad Specialist, he ensures that all brand partnerships are handled professionally, creatively, and smoothly.

{/* Gallery Section */} {/* Why Choose Us Section */}

Why Choose Us?

Combining Lianju's natural charm with professional ad-industry expertise.

{/* Feature 1 */}

Natural Talent

At just 1.5 years old, Lianju is incredibly comfortable in front of the camera, delivering genuine smiles and engaging expressions perfect for kids' brands.

{/* Feature 2 */}

Ad Specialist Managed

Managed by Abdullah, an Ad Specialist. This means we understand brand guidelines, campaign objectives, deliverables, and professional communication.

{/* Feature 3 */}

Engaged Audience

With an active presence on YouTube and Instagram, partnering with us means reaching a loving, family-oriented audience who enjoys our daily vlogs.

{/* Contact Section */}
{/* Contact Info */}
{/* Decorative circles */}

Get in Touch

Interested in collaborations, modeling assignments, or just want to say hi? Reach out to my Dad!

Call / WhatsApp

+91 9544214536

(Managed by Abdullah)

Email

Contact via Form

Location

India

Follow My Journey

{/* Contact Form */}

Send us a Message

{formStatus === 'success' ? (

Message Sent Successfully!

Thank you for reaching out. Abdullah will get back to you shortly.

) : (
)}
{/* Footer */}
); }; export default App;c